home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / maestro / source / dtr / gtbcktth.txt < prev    next >
Encoding:
Text File  |  1993-06-15  |  1.8 KB  |  77 lines

  1. WaitFlag
  2. ActiveFlag
  3. Buffer
  4. SoundBufferReady
  5. FileReady
  6. Device_phdr
  7.  
  8. buffer.c:
  9.  
  10. WaveEditMode
  11. SameSoundFile
  12. CanUndo
  13.  
  14.  
  15. WaveCanvasScrollbar (also, where does it get set?)
  16. SoundFileInTmp
  17.  
  18. -------------------------- cut here --------------------------
  19. canvas.c:
  20.  
  21. Scrollbar    WaveCanvasScrollbar;
  22. Scrollbar       ScaleCanvasScrollbar;
  23. int            ScrollbarPixelsPerUnit;
  24. int             ScrollbarViewStart;
  25. int         ScrollbarViewEnd;
  26. unsigned long *    WaveCanvasColormap;
  27. unsigned long * VUMeterCanvasColormap;
  28. #define REDLEVELSTART 72
  29. unsigned long * ScaleCanvasColormap;
  30. int             ScaleAxisHeight;
  31. int             ScaleTimeHeight;
  32.  
  33. Does function   WaveCanvasOutOfSoundScope(winX) take into account the
  34. current zoom factor?
  35.  
  36. -------------------------- cut here --------------------------
  37. dtr.c:
  38.  
  39. What is IS_SOUNDFILE?
  40.  
  41. Defined constant "Zoom"?  Maybe should be "currentZoomLevel" or
  42. "zoomLevel".
  43.  
  44.  
  45. -------------------------- cut here --------------------------
  46. dtr.h:
  47.  
  48. Look at all the defined constants, capitalized variables.
  49.  
  50. -------------------------- cut here --------------------------
  51. editlist.c:
  52.  
  53. DEFAULT_EDITLIST_SIZE
  54.  
  55. Look at mallocs for these:
  56.     EditList.soundFile[i] = (char *) malloc(80);
  57.     EditList.label[i]     = (char *) malloc(40);
  58.  
  59. See if you can replace the 80 and 40 with variables.
  60.  
  61. -------------------------- cut here --------------------------
  62. dbcanvas.c:
  63.  
  64. unsigned long *    GlobalWaveCanvasColormap;
  65.  
  66. -------------------------- cut here --------------------------
  67. In General:
  68.  
  69. Check on this WaveEditMode thing.  Can it be toggled anymore?  It
  70. shouldn't be turned off, probably, or maybe there should now be a menu
  71. choice to toggle editing of the audio file.
  72.  
  73. Look for use of the "system()" call; try to get rid of those.
  74.  
  75. Fix error "negative selection size".  App shouldn't exit; it should be
  76. more graceful.
  77.